home *** CD-ROM | disk | FTP | other *** search
- #
- # misc. standard csh variables get set here
- #
- set history=25
- set autolist
- set prompt='csh(\!) '
-
- #
- # special tcsh alias: a command that gets executed before every prompt
- # this makes sure the cursor is on
- # (unfortunately, this leaks memory, so it's best not to use it :-(
- # alias precmd 'echotc ti'
-
- #
- # atariST extension: use ^ instead of \ as an escape character,
- # so that \ can be used more conveniently in file names
- #
- set escchar=^
-
- #
- # atariST extension: use \ in preference to / when completing names,
- # doing ls-F, etc. Set this variable only if you have set escchar to
- # something other than \
- #
- # set dosslashes
- #
-
- #
- # with MiNT 0.93+, you can set terminals to send vt52 escape sequences
- # when cursor/function keys are pressed. we do that here (it assumes
- # that the "stty" program is on your search path) and set some
- # bindings
- #
- # stty vt52 # this really should be done in mint.cnf or login.csh
-
- bindkey "^[A" up-history
- bindkey "^[B" down-history
- bindkey "^[C" forward-char
- bindkey "^[D" backward-char
-
- # these match gulam's use of Insert and Clr/Home
-
- bindkey "^[E" list-choices
- bindkey "^[I" complete-word
-
- #
- # note: in PATH, use "/dev/c" in place of "c:". If you're using MiNT
- # and drive U:, you don't need to worry about this, since all your
- # paths can be absolute
- #
- setenv PATH :/dev/d/bin:/dev/d/gnu/bin:/dev/e/mint/bin:/dev/i/mgr/bin
- rehash
-
- #
- # environment: this is for my setup, customize as you see fit
- #
-
- set term=st52
- set home=e:\home
- setenv GCCEXEC d:\gnu\bin\gcc-
- setenv GNULIB d:\gnu\lib
- setenv GNUINC c:\libsrc\include
- setenv TEMP m:
- setenv TMPDIR $TEMP
- setenv USER eric
- setenv CC gcc
- setenv AS gcc-as
- setenv SHELL sh
- setenv TZ EST5EDT
- setenv UNIXMODE "/cu"
- setenv TEXINPUTS '.;f:\tex\macros'
- setenv TEXFORMATS f:\tex\macros
- setenv TEXFONTS f:\tex\fonts
- setenv TMACDIR c:\nroff\src
-
- #
- # aliases:
- #
-
- alias ls ls-F
-